home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / pcfig4th.zip / 4TH-UG.TOC < prev    next >
Text File  |  1985-10-21  |  5KB  |  78 lines

  1.  
  2.  
  3.  
  4.                                                                       Page i
  5.                                     Table of Contents
  6.  
  7.  
  8.                 2  QUICK REFERENCE. . . . . . . . . . . . . . . . . . .    2
  9.                  2.1  System Requirements . . . . . . . . . . . . . . .    2
  10.                  2.2  Invocation. . . . . . . . . . . . . . . . . . . .    2
  11.                  2.3  Provided Documentation. . . . . . . . . . . . . .    3
  12.                 3  INTRODUCTION . . . . . . . . . . . . . . . . . . . .    4
  13.                 4  USER'S GUIDE . . . . . . . . . . . . . . . . . . . .    6
  14.                  4.1  System requirements . . . . . . . . . . . . . . .    6
  15.                  4.2  FORTH, calculator style . . . . . . . . . . . . .    7
  16.                   4.2.1  Getting Started. . . . . . . . . . . . . . . .    7
  17.                   4.2.2  Communicating With FORTH . . . . . . . . . . .    7
  18.                   4.2.3  Special Functions. . . . . . . . . . . . . . .    8
  19.                   4.2.4  New definitions. . . . . . . . . . . . . . . .    8
  20.                   4.2.5  Exiting FORTH. . . . . . . . . . . . . . . . .    9
  21.                  4.3  Using the Disk. . . . . . . . . . . . . . . . . .   10
  22.                   4.3.1  Creating and editing Definitions . . . . . . .   10
  23.                   4.3.2  FORTH Disk Access. . . . . . . . . . . . . . .   11
  24.                   4.3.3  Screen File Access . . . . . . . . . . . . . .   11
  25.                   4.3.4  Compiling Definitions. . . . . . . . . . . . .   13
  26.                   4.3.5  Other Functions. . . . . . . . . . . . . . . .   14
  27.                    4.3.5.1  changing the default drive. . . . . . . . .   14
  28.                    4.3.5.2  directory information . . . . . . . . . . .   14
  29.                    4.3.5.3  erasing files . . . . . . . . . . . . . . .   14
  30.                    4.3.5.4  screen transfer . . . . . . . . . . . . . .   15
  31.                    4.3.5.5  screen file status. . . . . . . . . . . . .   15
  32.                    4.3.5.6  Notes . . . . . . . . . . . . . . . . . . .   17
  33.                  4.4  Modifying FORTH . . . . . . . . . . . . . . . . .   18
  34.                   4.4.1  FORTH Extensions . . . . . . . . . . . . . . .   18
  35.                   4.4.2  Patching . . . . . . . . . . . . . . . . . . .   18
  36.                   4.4.3  Assembly Source Modifications. . . . . . . . .   19
  37.                 5  TECHNICAL REFERENCE. . . . . . . . . . . . . . . . .   20
  38.                  5.1  Assembly Source . . . . . . . . . . . . . . . . .   20
  39.                   5.1.1  Source File Organization . . . . . . . . . . .   20
  40.                   5.1.2  Macros . . . . . . . . . . . . . . . . . . . .   21
  41.                   5.1.3  Comments . . . . . . . . . . . . . . . . . . .   21
  42.                  5.2  Modifications . . . . . . . . . . . . . . . . . .   22
  43.                   5.2.1  boot parameters. . . . . . . . . . . . . . . .   22
  44.                   5.2.2  machine code definitions . . . . . . . . . . .   22
  45.                   5.2.3  high-level utility definitions . . . . . . . .   22
  46.                   5.2.4  installation dependent code. . . . . . . . . .   23
  47.                    5.2.4.1  console i/o . . . . . . . . . . . . . . . .   23
  48.                    5.2.4.2  printer i/o . . . . . . . . . . . . . . . .   23
  49.                    5.2.4.3  disk i/o. . . . . . . . . . . . . . . . . .   23
  50.                   5.2.5  high-level definitions . . . . . . . . . . . .   24
  51.                   5.2.6  system tools . . . . . . . . . . . . . . . . .   24
  52.                   5.2.7  RAM workspace. . . . . . . . . . . . . . . . .   24
  53.                   5.2.8  memory map . . . . . . . . . . . . . . . . . .   24
  54.                   5.2.9  other. . . . . . . . . . . . . . . . . . . . .   24
  55.                  5.3  Additions . . . . . . . . . . . . . . . . . . . .   25
  56.                   5.3.1  Command Line Interpretation. . . . . . . . . .   25
  57.                   5.3.2  File Interface . . . . . . . . . . . . . . . .   25
  58.                 6  GLOSSARY . . . . . . . . . . . . . . . . . . . . . .   27
  59.                  6.1  Assembly Listing Definitions. . . . . . . . . . .   28
  60.                  6.2  Deleted Definitions . . . . . . . . . . . . . . .   35
  61.                  6.3  High-level Extensions . . . . . . . . . . . . . .   36
  62.  
  63.  
  64.  
  65.                                                                      Page ii
  66.                Table of Contents
  67.  
  68.                 7  Future Extensions. . . . . . . . . . . . . . . . . .   38
  69.                 8  FORTH sources. . . . . . . . . . . . . . . . . . . .   39
  70.  
  71.                Appendix A - Using execution vectors . . . . . . . . . .   40
  72.  
  73.                  B.1  concepts. . . . . . . . . . . . . . . . . . . . .   40
  74.                  B.2  An example. . . . . . . . . . . . . . . . . . . .   41
  75.  
  76.                Appendix B - Building FORTH.COM. . . . . . . . . . . . .   42
  77.  
  78.